@prefix iop: <https://w3id.org/iadopt/ont/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ex: <http://example.org/iadopt/challenge/> .
@prefix iopp: <https://w3id.org/iadopt/pattern/> .


ex:C3
    a 
        iop:Variable ;
    rdfs:label 
        "Cloud cover" ;
    rdfs:comment
        """The amount of sky estimated to be covered by all cloud types.""" ;
    ex:issue "https://github.com/mabablue/I-ADOPT-examples-playground/issues/9" ;
    iop:hasObjectOfInterest 
        _:b0 ;
    iop:hasProperty 
        <http://www.ontology-of-units-of-measure.org/resource/om-2/AreaFraction> .

_:b0
    a 
        iop:Entity ,
        iop:AsymmetricSystem ;
    iop:hasDenominator 
        <https://www.wikidata.org/entity/Q527> ;
    iop:hasNumerator 
        <https://www.wikidata.org/entity/Q8074> .

<http://www.ontology-of-units-of-measure.org/resource/om-2/AreaFraction>
    a 
        iop:Property ;
    rdfs:label 
        "area fraction" .

<https://www.wikidata.org/entity/Q527>
    a 
        iop:Entity ;
    rdfs:label 
        "sky" .

<https://www.wikidata.org/entity/Q8074>
    a 
        iop:Entity ;
    rdfs:label 
        "cloud" .
